linear-gradient.ref.css \
margin.css \
margin.ref.css \
+ min-height.css \
+ min-height.ref.css \
+ min-width.css \
+ min-width.ref.css \
no-semicolon.css \
no-semicolon.ref.css \
not.css \
text-shadow-invalid-but-worked-in-3.12.ref.css \
transition.css \
transition.ref.css \
+ transition-delay.css \
+ transition-delay.ref.css \
+ transition-duration.css \
+ transition-duration.ref.css \
+ transition-property.css \
+ transition-property.ref.css \
+ transition-timing-function.css \
+ transition-timing-function.ref.css \
value-inherit.css \
value-inherit.errors \
value-inherit-shorthand.css \
--- /dev/null
+a {
+ transition-delay: initial;
+}
+
+b {
+ transition-delay: inherit;
+}
+
+c {
+ transition-delay: unset;
+}
+
+d {
+ transition-delay: 0s;
+}
+
+e {
+ transition-delay: 5s;
+}
+
+f {
+ transition-delay: 5ms;
+}
+
+g {
+ transition-delay: 5ms, 5s;
+}
--- /dev/null
+a {
+ transition-delay: initial;
+}
+
+b {
+ transition-delay: inherit;
+}
+
+c {
+ transition-delay: unset;
+}
+
+d {
+ transition-delay: 0;
+}
+
+e {
+ transition-delay: 5s;
+}
+
+f {
+ transition-delay: 5ms;
+}
+
+g {
+ transition-delay: 5ms, 5s;
+}
--- /dev/null
+a {
+ transition-property: initial;
+}
+
+b {
+ transition-property: inherit;
+}
+
+c {
+ transition-property: unset;
+}
+
+d {
+ transition-property: all;
+}
+
+e {
+ transition-property: color;
+}
+
+f {
+ transition-property: color, background-color;
+}
--- /dev/null
+a {
+ transition-property: initial;
+}
+
+b {
+ transition-property: inherit;
+}
+
+c {
+ transition-property: unset;
+}
+
+d {
+ transition-property: all;
+}
+
+e {
+ transition-property: color;
+}
+
+f {
+ transition-property: color, background-color;
+}
--- /dev/null
+a {
+ transition-timing-function: initial;
+}
+
+b {
+ transition-timing-function: inherit;
+}
+
+c {
+ transition-timing-function: unset;
+}
+
+d {
+ transition-timing-function: ease;
+}
+
+e {
+ transition-timing-function: ease, linear, ease-in, ease-out, ease-in-out, step-start, step-end;
+}
+
+f {
+ transition-timing-function: cubic-bezier(0,0.25,1,2.7);
+}
+
+g {
+ transition-timing-function: steps(3);
+}
+
+h {
+ transition-timing-function: steps(5,start);
+}
+
+i {
+ transition-timing-function: steps(7,end);
+}
--- /dev/null
+a {
+ transition-timing-function: initial;
+}
+
+b {
+ transition-timing-function: inherit;
+}
+
+c {
+ transition-timing-function: unset;
+}
+
+d {
+ transition-timing-function: ease;
+}
+
+e {
+ transition-timing-function: ease, linear, ease-in, ease-out, ease-in-out, step-start, step-end;
+}
+
+f {
+ transition-timing-function: cubic-bezier(0,0.25,1,2.7);
+}
+
+g {
+ transition-timing-function: steps(3);
+}
+
+h {
+ transition-timing-function: steps(5,start);
+}
+
+i {
+ transition-timing-function: steps(7);
+}